home *** CD-ROM | disk | FTP | other *** search
/ Hyper Stacks 1994 May / Hyper Stacks (Pacific HiTech)(1994)[Mac].iso / Games / TicTacToe / background_2778.txt < prev    next >
Text File  |  1988-03-23  |  2KB  |  102 lines

  1. -- background: 2778 from stack: in
  2. -- bmap block id: 4006
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: A006
  11. -- rect: left=27 top=4 right=22 bottom=103
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Play "X"
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   global drawpiece
  23.   set hilite of bkgnd button 1 to true
  24.   set hilite of bkgnd button 4 to true
  25.   set hilite of bkgnd button 2 to false
  26.   set hilite of bkgnd button 3 to false
  27.   put false into drawpiece
  28. end mouseUp
  29.  
  30.  
  31.  
  32. -- part 2 (button)
  33. -- low flags: 00
  34. -- high flags: E006
  35. -- rect: left=27 top=21 right=39 bottom=103
  36. -- title width / last selected line: 0
  37. -- icon id / first selected line: 0 / 0
  38. -- text alignment: 1
  39. -- font id: 0
  40. -- text size: 12
  41. -- style flags: 0
  42. -- line height: 16
  43. -- part name: Play "O"
  44. ----- HyperTalk script -----
  45. on mouseUp
  46.   global drawpiece
  47.   set hilite of bkgnd button 1 to false
  48.   set hilite of bkgnd button 4 to false
  49.   set hilite of bkgnd button 2 to true
  50.   set hilite of bkgnd button 3 to true
  51.   put true into drawpiece
  52. end mouseUp
  53.  
  54.  
  55.  
  56. -- part 3 (button)
  57. -- low flags: 00
  58. -- high flags: E006
  59. -- rect: left=402 top=4 right=22 bottom=478
  60. -- title width / last selected line: 0
  61. -- icon id / first selected line: 0 / 0
  62. -- text alignment: 1
  63. -- font id: 0
  64. -- text size: 12
  65. -- style flags: 0
  66. -- line height: 16
  67. -- part name: Play "X"
  68. ----- HyperTalk script -----
  69. on mouseUp
  70.   global drawpiece
  71.   set hilite of bkgnd button 1 to false
  72.   set hilite of bkgnd button 4 to false
  73.   set hilite of bkgnd button 2 to true
  74.   set hilite of bkgnd button 3 to true
  75.   put true into drawpiece
  76. end mouseUp
  77.  
  78.  
  79.  
  80. -- part 4 (button)
  81. -- low flags: 00
  82. -- high flags: A006
  83. -- rect: left=402 top=21 right=39 bottom=478
  84. -- title width / last selected line: 0
  85. -- icon id / first selected line: 0 / 0
  86. -- text alignment: 1
  87. -- font id: 0
  88. -- text size: 12
  89. -- style flags: 0
  90. -- line height: 16
  91. -- part name: Play "O"
  92. ----- HyperTalk script -----
  93. on mouseUp
  94.   global drawpiece
  95.   set hilite of bkgnd button 1 to true
  96.   set hilite of bkgnd button 4 to true
  97.   set hilite of bkgnd button 2 to false
  98.   set hilite of bkgnd button 3 to false
  99.   put false into drawpiece
  100. end mouseUp
  101.  
  102.